missed one
authorTim Starling <tstarling@users.mediawiki.org>
Fri, 14 Jul 2006 17:05:00 +0000 (17:05 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Fri, 14 Jul 2006 17:05:00 +0000 (17:05 +0000)
includes/SpecialIpblocklist.php

index 4ad265c..6df7f03 100644 (file)
@@ -171,7 +171,7 @@ class IPUnblockForm {
                        // No extra conditions
                } elseif ( substr( $this->ip, 0, 1 ) == '#' ) {
                        $conds['ipb_id'] = substr( $this->ip, 1 );
-               } elseif ( IP::ToUnsigned( $this->ip ) !== false ) {
+               } elseif ( IP::toUnsigned( $this->ip ) !== false ) {
                        $conds['ipb_address'] = $this->ip;
                        $conds['ipb_auto'] = 0;
                } elseif( preg_match( "/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\\/(\\d{1,2})$/", $this->ip, $matches ) ) {